home *** CD-ROM | disk | FTP | other *** search
/ Pluspack 1 / Caligari Corporation Pluspack1 1998.iso / TSX_SDK / tsxINC / ItsxMath.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-28  |  2.0 KB  |  57 lines

  1. //******************************************************************************
  2. //    File: ItsxMath.h
  3. //  Module: trueSpace eXtensions API
  4. //   Descr: Declarations for the ItsxMath COM interface
  5. //******************************************************************************
  6.  
  7.  
  8. #ifndef ITSXMATH_H
  9. #define ITSXMATH_H
  10.  
  11.  
  12. #include "itsxcommon.h"
  13. #include "tsxcomtypes.h"
  14.  
  15. typedef struct ItsxDocument* PITSXDOCUMENT;
  16.  
  17.  
  18. #undef INTERFACE
  19. #define INTERFACE ItsxMath
  20.  
  21. DECLARE_INTERFACE_(ItsxMath, IUnknown)
  22. {
  23.     // IUnknown members
  24.     STDMETHOD(QueryInterface) (THIS_ REFIID, PPVOID) PURE;
  25.     STDMETHOD_(ULONG, AddRef)  (THIS) PURE;
  26.     STDMETHOD_(ULONG, Release) (THIS) PURE;
  27.  
  28.     // ItsxMath members
  29.     STDMETHOD(Normalize) (THIS_ tsxVector*) PURE;
  30.     STDMETHOD(Magnitude) (THIS_ tsxVector*, float*) PURE;
  31.     STDMETHOD(MultiplyScalar) (THIS_ tsxVector*, float) PURE;
  32.     STDMETHOD(AddVectorToVector) (THIS_ tsxVector*, tsxVector*) PURE;
  33.     STDMETHOD(SubtractVectorFromVector) (THIS_ tsxVector*, tsxVector*) PURE;
  34.     STDMETHOD(DotProduct) (THIS_ tsxVector*, tsxVector*, float*) PURE;
  35. /*
  36.     STDMETHOD(CrossProduct) (THIS_ tsxVector*, tsxVector*, tsxVector*) PURE;
  37.     STDMETHOD(DistanceToLine) (THIS_ tsxVector*, tsxVector*, tsxVector*, float*) PURE;
  38.     STDMETHOD(DistanceToPlane) (THIS_ tsxVector*, tsxVector*, tsxVector*, float*) PURE;
  39.     STDMETHOD(GetMatrixTranslation) (THIS_ tsxMatrix*, tsxVector*) PURE;
  40.     STDMETHOD(SetMatrixTranslation) (THIS_ tsxMatrix*, tsxVector*) PURE;
  41.     STDMETHOD(AddMatrixTranslation) (THIS_ tsxMatrix*, tsxVector*) PURE;
  42.     STDMETHOD(InvertMatrix) (THIS_ tsxMatrix*) PURE;
  43.     STDMETHOD(MultiplyMatrix) (THIS_ tsxMatrix*, tsxMatrix*, tsxMatrix*) PURE;
  44. */
  45.     STDMETHOD_(float, DegreesToRadians) (THIS_ float) PURE;
  46.     STDMETHOD_(float, RadiansToDegrees) (THIS_ float) PURE;
  47. };
  48.  
  49. // typedef a pointer to this interface
  50. typedef ItsxMath* PITSXMATH;
  51.  
  52. // define a GUID for this interface
  53. // {3B3F2640-3A3F-11d1-A255-006097D15F58}
  54. DEFINE_GUID(IID_ItsxMath, 0x3b3f2640, 0x3a3f, 0x11d1, 0xa2, 0x55, 0x0, 0x60, 0x97, 0xd1, 0x5f, 0x58);
  55.  
  56.  
  57. #endif // ITSXMATH_H